home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
tools
/
czesc_3
/
reminder
/
src
/
events.h
< prev
next >
Wrap
C/C++ Source or Header
|
1993-04-19
|
442b
|
23 lines
/* Events.c prototypes for Reminder */
/* $Id: Events.h,v 1.3 1993/04/08 20:12:06 Matti_Rintala Exp $ */
#ifndef EVENTS_H
#define EVENTS_H
#include <exec/types.h>
#include <exec/lists.h>
struct List *InitEvents(void);
void NewEvent(void);
struct List *AddEvent(void);
int GetEvent(void);
struct List *UpdateEvent(void);
struct List *RemoveEvent(void);
int LoadEvents(const char *filename);
int SaveEvents(const char *filename);
#endif